From 3ce0813b38015c193708d1f4c768f8e5a7125bea Mon Sep 17 00:00:00 2001 From: Roman Lebedev Date: Mon, 22 Aug 2016 15:25:31 +0300 Subject: [PATCH] tools: babl-gen-test-pixels: add explicit return 0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Gcc-4.9 warns: babl-gen-test-pixels.c: In function ‘main’: babl-gen-test-pixels.c:170:1: error: control reaches end of non-void function [-Werror=return-type] --- tools/babl-gen-test-pixels.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/babl-gen-test-pixels.c b/tools/babl-gen-test-pixels.c index 0231224..54c1b16 100644 --- a/tools/babl-gen-test-pixels.c +++ b/tools/babl-gen-test-pixels.c @@ -167,4 +167,6 @@ int main (int argc, char **argv) gen_path_pixels (); gen_model_pixels (); gen_type_pixels (); -} \ No newline at end of file + + return 0; +} -- 2.30.2